home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / E / E_Examples / Output / Docs / ANSIBits.TXT < prev   
Encoding:
Text File  |  1997-02-26  |  1.2 KB  |  28 lines

  1. ANSIBits.e By Edward Farrow
  2. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3. ANSI Codes are simple and can be used for anything from fancy output and
  4. input styles to bulletin board system displays.
  5.    ANSI Codes in Amiga E are very simple to do! All you have to do is use
  6. the built in Amiga E keyword `\e'.
  7.  
  8. Code    Effect       Notes
  9. ~~~~    ~~~~~~       ~~~~~
  10.   0m  = Normal     - Always finish your line with this as it makes sure your
  11.                      code doesnt go haywire. Also use it to switch off
  12.                      atributes.
  13.   1m  = Bold
  14.   2m  = White
  15.   3m  = Italic     - Useful for things like quotes and usage information.
  16.   4m  = Underlined
  17.   7m  = Reversed   - Reverse text can be used for all sorts of things but is
  18.                      best used sparingly! Too much can annoy users.
  19.  
  20. *  Anything higher than 7m tends to be system dependant (although 33m is  *
  21. *  blue text) So it is best not to use them...                            *
  22.  
  23.  
  24. *NOTE* ANSI Codes for BBS' will be different! BBS' have the ability to
  25. display a whole host of colours and codes while being 100% compatible with
  26. all computers. If you want to learn ANSI codes for BBS' get a document such
  27. as ANSI Guide by Spiny Norman.
  28.